home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / ViePratique / gnucash / gnucash-2.6.5-setup.exe / {app} / share / aqbanking / backends / aqofxconnect / dialogs / dlg_newuser.dlg < prev    next >
Extensible Markup Language  |  2014-12-19  |  5KB  |  121 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2.  
  3. <!--
  4. /***************************************************************************
  5.  copyright   : (C) 2010 by Martin Preuss
  6.  email       : martin@aqbanking.de
  7.  
  8.  ***************************************************************************
  9.  * This file is part of the project "AqBanking".                           *
  10.  * Please see toplevel file COPYING of that project for license details.   *
  11.  ***************************************************************************/
  12. -->
  13.  
  14. <dialog type="dialog" name="ao_newuser" i18n="aqbanking"
  15.         flags="decorShrinkable decorStretchable decorMaximize decorMinimize decorClose decorMenu" >
  16.   <widget type="vlayout" flags="fillX fillY" >
  17.  
  18.     <!-- wizard pages -->
  19.     <widget type="widgetStack" name="wiz_stack" flags="fillX fillY" >
  20.       <!-- intro page -->
  21.       <widget type="vlayout" flags="fillX fillY" >
  22.         <widget type="label" name="wiz_begin_label" flags="fillX fillY justifyLeft" />
  23.       </widget>
  24.  
  25.       <!-- bank settings page -->
  26.       <widget type="vlayout" flags="fillX fillY" >
  27.         <widget type="label" name="wiz_bank_label" flags="fillX fillY justifyLeft" />
  28.         <widget type="hLine" flags="fillX" />
  29.         <widget type="gridLayout" columns="2" flags="fillX" >
  30.  
  31.           <widget type="label" text="Bank Name" />
  32.           <widget type="hlayout" flags="fillX" >
  33.             <widget type="lineEdit" name="wiz_bankname_edit" columns="40" flags="fillX" />
  34.             <widget type="pushButton" text="Select" name="wiz_bank_button" />
  35.           </widget>
  36.           
  37.           <widget type="label" text="Broker Id" />
  38.           <widget type="lineEdit" name="wiz_brokerid_edit" columns="40" flags="fillX" />
  39.  
  40.           <widget type="label" text="FID" />
  41.           <widget type="lineEdit" name="wiz_fid_edit" columns="40" flags="fillX" />
  42.  
  43.           <widget type="label" text="ORG" />
  44.           <widget type="lineEdit" name="wiz_org_edit" columns="40" flags="fillX" />
  45.  
  46.           <widget type="label" text="Server URL" />
  47.           <widget type="lineEdit" name="wiz_url_edit" columns="40" flags="fillX" />
  48.  
  49.         </widget>
  50.   
  51.       </widget>
  52.  
  53.       <!-- user page -->
  54.       <widget type="vlayout" flags="fillX fillY" >
  55.         <widget type="label" name="wiz_user_label" flags="fillX fillY justifyLeft" />
  56.         <widget type="hLine" flags="fillX" />
  57.         <widget type="gridLayout" columns="2" flags="fillX" >
  58.  
  59.           <widget type="label" text="User Name" />
  60.           <widget type="lineEdit" name="wiz_username_edit" columns="40" flags="fillX" />
  61.  
  62.           <widget type="label" text="User Id" />
  63.           <widget type="lineEdit" name="wiz_userid_edit" columns="40" flags="fillX" />
  64.  
  65.           <widget type="label" text="Client UID" />
  66.           <widget type="lineEdit" name="wiz_clientuid_edit" columns="40" flags="fillX" />
  67.  
  68.         </widget>
  69.   
  70.       </widget>
  71.  
  72.       <!-- app page -->
  73.       <widget type="vlayout" flags="fillX fillY" >
  74.         <widget type="label" name="wiz_app_label" flags="fillX fillY justifyLeft" />
  75.         <widget type="hLine" flags="fillX" />
  76.         <widget type="gridLayout" columns="2" flags="fillX" >
  77.  
  78.           <widget type="label" text="Emulated Application" flags="justifyLeft" />
  79.           <widget type="comboBox" name="wiz_app_combo" flags="fillX readOnly" />
  80.  
  81.           <widget type="label" text="Application ID" flags="justifyLeft" />
  82.           <widget type="lineEdit" name="wiz_appid_edit" flags="fillX" />
  83.  
  84.           <widget type="label" text="Application Version" flags="justifyLeft" />
  85.           <widget type="lineEdit" name="wiz_appver_edit" flags="fillX" />
  86.  
  87.           <widget type="label" text="Header Version" flags="justifyLeft" />
  88.           <widget type="lineEdit" name="wiz_headerver_edit" flags="fillX" />
  89.  
  90.         </widget>
  91.   
  92.       </widget>
  93.  
  94.       <!-- action page -->
  95.       <widget type="vlayout" flags="fillX fillY" >
  96.         <widget type="label" name="wiz_create_label" flags="fillX fillY justifyLeft" />
  97.         <widget type="pushButton" text="Special Settings" name="wiz_special_button" />
  98.       </widget>
  99.  
  100.       <!-- extro page -->
  101.       <widget type="vlayout" flags="fillX fillY" >
  102.         <widget type="label" name="wiz_end_label" flags="fillX fillY justifyLeft" />
  103.         <widget type="pushButton" text="Retrieve Account List" name="wiz_getaccounts_button" />
  104.       </widget>
  105.  
  106.     </widget>
  107.  
  108.     <!-- wizard controls -->
  109.     <widget type="hLine" flags="fillX" />
  110.     <widget type="hlayout" flags="fillX equalWidth" >
  111.       <widget type="pushButton" text="Help"     name="wiz_help_button" />
  112.       <widget type="hspacer" flags="fillX" />
  113.       <widget type="pushButton" text="Previous" name="wiz_prev_button" />
  114.       <widget type="pushButton" text="Next"     name="wiz_next_button" flags="default" />
  115.       <widget type="pushButton" text="Abort"    name="wiz_abort_button" />
  116.     </widget>
  117.  
  118.   </widget>
  119.  
  120. </dialog>
  121.